home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / os2tools / bnklysrc / makefile.os2 < prev    next >
Makefile  |  1989-07-08  |  16KB  |  277 lines

  1. ###############################################################
  2. # This file generated by MAKMAK version 8                     #
  3. # and is intended for microsoft MAKE.EXE version 4.xx +       #
  4. ###############################################################
  5.  
  6. ###############################################################
  7. #  Make file for Binkley Term - OS/2 version                  #
  8. #                                                             #
  9. #  /*PLF Tue  05-09-1989  04:34:43 */                         #
  10. #                                                             #
  11. #  use MAKE main=bt MAKEFILE                                  #
  12. #  or  MAKE main=btctl MAKEFILE                               #
  13. #                                                             #
  14. # Differences from dos make file:                             #
  15. #   No *.ASM files.                                           #
  16. #                                                             #
  17. #   fstat.c required to fix msc5.10 bug. You won't be able    #
  18. #   to compile it without the MSC Runtime source!             #
  19. #                                                             #
  20. #   async.c is required to emulate a fossil driver            #
  21. #                                                             #
  22. #   Unlike the dos version, all of this code can be compiled  #
  23. #   in any memory model; however, since BT.EXE has more than  #
  24. #   64k of code segments, the medium or large model must be   #
  25. #   used.                                                     #
  26. ###############################################################
  27. objdir=objos2
  28. libdir=lib
  29. libname=binkos2
  30. model=L            # use large model when debugging -- bugs JUMP out at you
  31. mode=p
  32. #if you have an old os/2 toolkit, you may have to use DOSCALLS.LIB
  33. #in place of OS2.LIB!
  34. #linklibs = os2.lib
  35. linklibs=$(model)libce$(mode).lib os2.lib
  36. cmplopts=-A$(model) -L$(mode) -DBINKLEY -Iinc\ -Ox -Gs -Zpe -W3 /Fo$(objdir)\  /F 0bb8 -G2 -DOS_2 /Zi
  37. linkopts=$(libdir)\$(libname) $(linklibs)
  38. main=bt
  39.  
  40. $(main)$(mode).exe:  $(main)$(mode).obj $(libdir)\$(libname).lib
  41.  LINK $(main)$(mode).obj d:\c\lib\binmode.obj,$(main)$(mode).exe/SE:300,$(main)$(mode).map/MAP/LI,$(linkopts);
  42.  
  43. $(libdir)\$(libname).lib :\
  44.  $(objdir)\ASYNC.OBJ \
  45.  $(objdir)\BTCONFIG.OBJ \
  46.  $(objdir)\B_ANSI.OBJ \
  47.  $(objdir)\B_BANNER.OBJ \
  48.  $(objdir)\B_BBS.OBJ \
  49.  $(objdir)\B_FLOFIL.OBJ \
  50.  $(objdir)\B_FRPROC.OBJ \
  51.  $(objdir)\B_FUSER.OBJ \
  52.  $(objdir)\B_HELP.OBJ \
  53.  $(objdir)\B_INITVA.OBJ \
  54.  $(objdir)\B_PASSWO.OBJ \
  55.  $(objdir)\B_PROTO.OBJ \
  56.  $(objdir)\B_RSPFIL.OBJ \
  57.  $(objdir)\B_SBINIT.OBJ \
  58.  $(objdir)\B_SCRIPT.OBJ \
  59.  $(objdir)\B_SEARCH.OBJ \
  60.  $(objdir)\B_SESSIO.OBJ \
  61.  $(objdir)\B_SPAWN.OBJ \
  62.  $(objdir)\B_WAZOO.OBJ \
  63.  $(objdir)\B_WHACK.OBJ \
  64.  $(objdir)\B_WZSEND.OBJ \
  65.  $(objdir)\CDOG.OBJ \
  66.  $(objdir)\DATA.OBJ \
  67.  $(objdir)\DOSTIME.OBJ \
  68.  $(objdir)\EVTPARSE.OBJ \
  69.  $(objdir)\FIND.OBJ \
  70.  $(objdir)\FOSSIL.OBJ \
  71.  $(objdir)\FSTAT.OBJ \
  72.  $(objdir)\FTSC.OBJ \
  73.  $(objdir)\F_RECV.OBJ \
  74.  $(objdir)\F_SEND.OBJ \
  75.  $(objdir)\GET_KEY.OBJ \
  76.  $(objdir)\MAILER.OBJ \
  77.  $(objdir)\MAILSUBS.OBJ \
  78.  $(objdir)\MDM_PROC.OBJ \
  79.  $(objdir)\MISC.OBJ \
  80.  $(objdir)\NODEPROC.OBJ \
  81.  $(objdir)\RECVMDM7.OBJ \
  82.  $(objdir)\SB_BOX.OBJ \
  83.  $(objdir)\SB_FILL.OBJ \
  84.  $(objdir)\SB_INIT.OBJ \
  85.  $(objdir)\SB_MOVE.OBJ \
  86.  $(objdir)\SB_NEW.OBJ \
  87.  $(objdir)\SB_PUT.OBJ \
  88.  $(objdir)\SB_READ.OBJ \
  89.  $(objdir)\SB_SCRL.OBJ \
  90.  $(objdir)\SB_SHOW.OBJ \
  91.  $(objdir)\SB_WRITE.OBJ \
  92.  $(objdir)\SCHED.OBJ \
  93.  $(objdir)\TIMER.OBJ \
  94.  $(objdir)\VFOSSIL.OBJ \
  95.  $(objdir)\XFERMDM7.OBJ \
  96.  $(objdir)\YOOHOO.OBJ \
  97.  $(objdir)\ZMISC.OBJ \
  98.  $(objdir)\ZRECEIVE.OBJ \
  99.  $(objdir)\ZSEND.OBJ
  100.  if exist $(libdir)\$(libname).lib del $(libdir)\$(libname).lib
  101.  lib @$(libdir)\$(libname).rsp
  102. #        cmd\makelist $(objdir)\*.obj
  103. # lib $(libdir)\$(libname)+@list
  104.  
  105.  
  106. $(main)$(mode).obj: $(main).c inc\com.h inc\xfer.h inc\zmodem.h inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  107.     CL $(cmplopts) /Fo$(main)$(mode).obj $(main).c /c
  108.  
  109. $(objdir)\ASYNC.OBJ: src\ASYNC.C inc\bink.h inc\com.h inc\com_dos.h inc\com_os2.h
  110.     CL $(cmplopts) /Zl  src\ASYNC.C /c
  111.  
  112. $(objdir)\BTCONFIG.OBJ: src\BTCONFIG.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  113.     CL $(cmplopts) /Zl  src\BTCONFIG.C /c
  114.  
  115. $(objdir)\B_ANSI.OBJ: src\B_ANSI.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  116.     CL $(cmplopts) /Zl  src\B_ANSI.C /c
  117.  
  118. $(objdir)\B_BANNER.OBJ: src\B_BANNER.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  119.     CL $(cmplopts) /Zl  src\B_BANNER.C /c
  120.  
  121. $(objdir)\B_BBS.OBJ: src\B_BBS.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  122.     CL $(cmplopts) /Zl  src\B_BBS.C /c
  123.  
  124. $(objdir)\B_FLOFIL.OBJ: src\B_FLOFIL.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  125.     CL $(cmplopts) /Zl  src\B_FLOFIL.C /c
  126.  
  127. $(objdir)\B_FRPROC.OBJ: src\B_FRPROC.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h inc\find.h
  128.     CL $(cmplopts) /Zl  src\B_FRPROC.C /c
  129.  
  130. $(objdir)\B_FUSER.OBJ: src\B_FUSER.C   inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  131.     CL $(cmplopts) /Zl  src\B_FUSER.C /c
  132.  
  133. $(objdir)\B_HELP.OBJ: src\B_HELP.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  134.     CL $(cmplopts) /Zl  src\B_HELP.C /c
  135.  
  136. $(objdir)\B_INITVA.OBJ: src\B_INITVA.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  137.     CL $(cmplopts) /Zl  src\B_INITVA.C /c
  138.  
  139. $(objdir)\B_PASSWO.OBJ: src\B_PASSWO.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  140.     CL $(cmplopts) /Zl  src\B_PASSWO.C /c
  141.  
  142. $(objdir)\B_PROTO.OBJ: src\B_PROTO.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  143.     CL $(cmplopts) /Zl  src\B_PROTO.C /c
  144.  
  145. $(objdir)\B_RSPFIL.OBJ: src\B_RSPFIL.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  146.     CL $(cmplopts) /Zl  src\B_RSPFIL.C /c
  147.  
  148. $(objdir)\B_SBINIT.OBJ: src\B_SBINIT.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  149.     CL $(cmplopts) /Zl  src\B_SBINIT.C /c
  150.  
  151. $(objdir)\B_SCRIPT.OBJ: src\B_SCRIPT.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  152.     CL $(cmplopts) /Zl  src\B_SCRIPT.C /c
  153.  
  154. $(objdir)\B_SEARCH.OBJ: src\B_SEARCH.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  155.     CL $(cmplopts) /Zl  src\B_SEARCH.C /c
  156.  
  157. $(objdir)\B_SESSIO.OBJ: src\B_SESSIO.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  158.     CL $(cmplopts) /Zl  src\B_SESSIO.C /c
  159.  
  160. $(objdir)\B_SPAWN.OBJ: src\B_SPAWN.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  161.     CL $(cmplopts) /Zl  src\B_SPAWN.C /c
  162.  
  163. $(objdir)\B_WAZOO.OBJ: src\B_WAZOO.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  164.     CL $(cmplopts) /Zl  src\B_WAZOO.C /c
  165.  
  166. $(objdir)\B_WHACK.OBJ: src\B_WHACK.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  167.     CL $(cmplopts) /Zl  src\B_WHACK.C /c
  168.  
  169. $(objdir)\B_WZSEND.OBJ: src\B_WZSEND.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  170.     CL $(cmplopts) /Zl  src\B_WZSEND.C /c
  171.  
  172. $(objdir)\CDOG.OBJ: src\CDOG.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  173.     CL $(cmplopts) /Zl  src\CDOG.C /c
  174.  
  175. $(objdir)\DATA.OBJ: src\DATA.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\prototyp.h
  176.     CL $(cmplopts) /Zl  src\DATA.C /c
  177.  
  178. $(objdir)\DOSTIME.OBJ: src\DOSTIME.C
  179.     CL $(cmplopts) /Zl  src\DOSTIME.C /c
  180.  
  181. $(objdir)\EVTPARSE.OBJ: src\EVTPARSE.C   inc\tc_utime.h  inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  182.     CL $(cmplopts) /Zl  src\EVTPARSE.C /c
  183.  
  184. $(objdir)\FIND.OBJ: src\FIND.C inc\find.h
  185.     CL $(cmplopts) /Zl  src\FIND.C /c
  186.  
  187. $(objdir)\FOSSIL.OBJ: src\FOSSIL.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  188.     CL $(cmplopts) /Zl  src\FOSSIL.C /c
  189.  
  190. #$(objdir)\FSTAT.OBJ: src\FSTAT.C
  191. #    CL $(cmplopts) -I D:\libsrc\include /Zl  src\FSTAT.C /c
  192.  
  193. $(objdir)\FTSC.OBJ: src\FTSC.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h inc\find.h
  194.     CL $(cmplopts) /Zl  src\FTSC.C /c
  195.  
  196. $(objdir)\F_RECV.OBJ: src\F_RECV.C  inc\tc_utime.h  inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h inc\find.h
  197.     CL $(cmplopts) /Zl  src\F_RECV.C /c
  198.  
  199. $(objdir)\F_SEND.OBJ: src\F_SEND.C    inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h inc\find.h
  200.     CL -A$(model) -L$(mode) -DBINKLEY -I inc\ -Oait -Gs -Zpe -W3 /Fo$(objdir)\  /F 0bb8 -G2 -DOS_2  src\F_SEND.C /c
  201.  
  202. $(objdir)\GET_KEY.OBJ: src\GET_KEY.C
  203.     CL $(cmplopts) /Zl  src\GET_KEY.C /c
  204.  
  205. $(objdir)\MAILER.OBJ: src\MAILER.C   inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h inc\vfossil.h
  206.     CL $(cmplopts) /Zl  src\MAILER.C /c
  207.  
  208. $(objdir)\MAILSUBS.OBJ: src\MAILSUBS.C   inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h inc\vfossil.h inc\find.h
  209.     CL $(cmplopts) /Zl /DIBMC  src\MAILSUBS.C /c
  210.  
  211. $(objdir)\MDM_PROC.OBJ: src\MDM_PROC.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  212.     CL $(cmplopts) /Zl  src\MDM_PROC.C /c
  213.  
  214. $(objdir)\MISC.OBJ: src\MISC.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  215.     CL $(cmplopts) /Zl  src\MISC.C /c
  216.  
  217. $(objdir)\NODEPROC.OBJ: src\NODEPROC.C   inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  218.     CL $(cmplopts) /Zl  src\NODEPROC.C /c
  219.  
  220. $(objdir)\RECVMDM7.OBJ: src\RECVMDM7.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  221.     CL $(cmplopts) /Zl  src\RECVMDM7.C /c
  222.  
  223. $(objdir)\SB_BOX.OBJ: src\SB_BOX.C inc\sbuf.h inc\video.h inc\box.h inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sched.h inc\externs.h inc\prototyp.h
  224.     CL $(cmplopts) /Zl  src\SB_BOX.C /c
  225.  
  226. $(objdir)\SB_FILL.OBJ: src\SB_FILL.C inc\sbuf.h inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sched.h inc\externs.h inc\prototyp.h
  227.     CL $(cmplopts) /Zl  src\SB_FILL.C /c
  228.  
  229. $(objdir)\SB_INIT.OBJ: src\SB_INIT.C inc\sbuf.h inc\xfer.h inc\bink.h inc\com.h inc\com_dos.h inc\com_os2.h inc\zmodem.h   inc\keybd.h inc\sched.h inc\externs.h inc\prototyp.h
  230.     CL $(cmplopts) /Zl  src\SB_INIT.C /c
  231.  
  232. $(objdir)\SB_MOVE.OBJ: src\SB_MOVE.C inc\sbuf.h inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sched.h inc\externs.h inc\prototyp.h
  233.     CL $(cmplopts) /Zl  src\SB_MOVE.C /c
  234.  
  235. $(objdir)\SB_NEW.OBJ: src\SB_NEW.C inc\sbuf.h inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sched.h inc\externs.h inc\prototyp.h
  236.     CL $(cmplopts) /Zl  src\SB_NEW.C /c
  237.  
  238. $(objdir)\SB_PUT.OBJ: src\SB_PUT.C inc\sbuf.h inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sched.h inc\externs.h inc\prototyp.h
  239.     CL $(cmplopts) /Zl  src\SB_PUT.C /c
  240.  
  241. $(objdir)\SB_READ.OBJ: src\SB_READ.C inc\sbuf.h inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sched.h inc\externs.h inc\prototyp.h
  242.     CL $(cmplopts) /Zl  src\SB_READ.C /c
  243.  
  244. $(objdir)\SB_SCRL.OBJ: src\SB_SCRL.C inc\sbuf.h inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sched.h inc\externs.h inc\prototyp.h
  245.     CL $(cmplopts) /Zl  src\SB_SCRL.C /c
  246.  
  247. $(objdir)\SB_SHOW.OBJ: src\SB_SHOW.C inc\sbuf.h inc\xfer.h inc\bink.h inc\com.h inc\com_dos.h inc\com_os2.h inc\zmodem.h   inc\keybd.h inc\sched.h inc\externs.h inc\prototyp.h inc\vfossil.h
  248.     CL $(cmplopts) /Zl  src\SB_SHOW.C /c
  249.  
  250. $(objdir)\SB_WRITE.OBJ: src\SB_WRITE.C inc\sbuf.h inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sched.h inc\externs.h inc\prototyp.h
  251.     CL $(cmplopts) /Zl  src\SB_WRITE.C /c
  252.  
  253. $(objdir)\SCHED.OBJ: src\SCHED.C   inc\tc_utime.h  inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  254.     CL $(cmplopts) /Zl  src\SCHED.C /c
  255.  
  256. $(objdir)\TIMER.OBJ: src\TIMER.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h inc\timer.h
  257.     CL $(cmplopts) /Zl  src\TIMER.C /c
  258.  
  259. $(objdir)\VFOSSIL.OBJ: src\VFOSSIL.C inc\vfossil.h inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  260.     CL $(cmplopts) /Zl  src\VFOSSIL.C /c
  261.  
  262. $(objdir)\XFERMDM7.OBJ: src\XFERMDM7.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h inc\find.h
  263.     CL $(cmplopts) /Zl  src\XFERMDM7.C /c
  264.  
  265. $(objdir)\YOOHOO.OBJ: src\YOOHOO.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  266.     CL $(cmplopts) /Zl  src\YOOHOO.C /c
  267.  
  268. $(objdir)\ZMISC.OBJ: src\ZMISC.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  269.     CL $(cmplopts) /Zl  src\ZMISC.C /c
  270.  
  271. $(objdir)\ZRECEIVE.OBJ: src\ZRECEIVE.C inc\tc_utime.h  inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  272.     CL $(cmplopts) /Zl  src\ZRECEIVE.C /c
  273.  
  274. $(objdir)\ZSEND.OBJ: src\ZSEND.C inc\com.h inc\com_dos.h inc\com_os2.h inc\xfer.h inc\bink.h inc\zmodem.h   inc\keybd.h inc\sbuf.h inc\sched.h inc\externs.h inc\prototyp.h
  275.     CL $(cmplopts) /Zl  src\ZSEND.C /c
  276.  
  277.